home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
CU Amiga Super CD-ROM 19
/
CU Amiga Magazine's Super CD-ROM 19 (1998)(EMAP Images)(GB)[!][issue 1998-02].iso
/
CUCD
/
Sound
/
MrMPEG
/
Sort.rexx
< prev
next >
Wrap
OS/2 REXX Batch file
|
1997-11-22
|
498b
|
22 lines
/* Sort.rexx */
options results; address MrMPEG
MUIA_List_Active = 0x8042391c; MUIA_List_Entries = 0x80421654
MUIM_List_Sort = 0x80422275
list ID SLIST ATTRS MUIA_List_Entries; max = result
list ID SLIST ATTRS MUIA_List_Active
list ID SLIST POS result; current = result
if current ~= 'RESULT' then do
method ID SLIST MUIM_List_Sort
do i = 0 to max - 1
list ID SLIST POS i
if result = current then do
list ID SLIST ATTRS MUIA_List_Active i
leave
end
end
end
return